home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue69 / Apache / Listing9.txt < prev   
Encoding:
Text File  |  2001-03-26  |  265 b   |  14 lines

  1. library Foo;
  2. uses
  3.   WebBroker,
  4.   ApacheApp,
  5.   FooU in 'FooU.pas' {WebModule1: TWebModule};
  6. {$R *.res}
  7. exports
  8.   apache_module name 'Foo_module';
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TWebModule1, WebModule1);
  12.   Application.Run;
  13. end.
  14.